Use CountSchedules for counting schedules#3100
Merged
laurakwhit merged 6 commits intomainfrom Feb 12, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
laurakwhit
approved these changes
Feb 4, 2026
laurakwhit
requested changes
Feb 4, 2026
Older servers that predate the CountSchedules API (added in v1.62.0) return 404 instead of 501. Treat both status codes as a signal to use the legacy workflow-count-based path.
laurakwhit
approved these changes
Feb 12, 2026
temporal-cicd bot
pushed a commit
that referenced
this pull request
Feb 23, 2026
Auto-generated version bump from 2.45.3 to 2.45.4 Bump type: patch Changes included: - [`02b30a6e`](02b30a6) Use CountSchedules for counting schedules (#3100) - [`90dfec88`](90dfec8) Add fallbacks for activities routes (#3154) - [`f160628c`](f160628) DT-3564 - migrate schedules form to superforms (#3159) - [`50d7bdf3`](50d7bdf) small css changes to nav components for better responsiveness (#3162) - [`e3b4028b`](e3b4028) UI Copy Updates (#3165) - [`3638919c`](3638919) add snippet for pre-release badge on standalone activities page (#3166) - [`1ee50fcb`](1ee50fc) fix standalone activity routes and prep for release (#3168) - [`7553e5b4`](7553e5b) Event history legend (#3160) - [`562067a8`](562067a) Environment variable audit (#3163) - [`51bdfd75`](51bdfd7) Card typography fixes (#3169) - [`dfc6b453`](dfc6b45) fix schedule edit form infinite effect loop (#3172) - [`07995e61`](07995e6) fix infinite effect bug when editing schedule with large input payload (#3174)
rossedfort
added a commit
that referenced
this pull request
Feb 23, 2026
Auto-generated version bump from 2.45.3 to 2.45.4 Bump type: patch Changes included: - [`02b30a6e`](02b30a6) Use CountSchedules for counting schedules (#3100) - [`90dfec88`](90dfec8) Add fallbacks for activities routes (#3154) - [`f160628c`](f160628) DT-3564 - migrate schedules form to superforms (#3159) - [`50d7bdf3`](50d7bdf) small css changes to nav components for better responsiveness (#3162) - [`e3b4028b`](e3b4028) UI Copy Updates (#3165) - [`3638919c`](3638919) add snippet for pre-release badge on standalone activities page (#3166) - [`1ee50fcb`](1ee50fc) fix standalone activity routes and prep for release (#3168) - [`7553e5b4`](7553e5b) Event history legend (#3160) - [`562067a8`](562067a) Environment variable audit (#3163) - [`51bdfd75`](51bdfd7) Card typography fixes (#3169) - [`dfc6b453`](dfc6b45) fix schedule edit form infinite effect loop (#3172) - [`07995e61`](07995e6) fix infinite effect bug when editing schedule with large input payload (#3174) Co-authored-by: rossedfort <11775628+rossedfort@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description & motivation 💭
CountSchedules API. UsingListWorkflowExecutionsto query schedules has always been private API, and it's about to break with the release of CHASM schedules. This makes use of a public API for both V1 and V2 schedules.